/* ===== GLOBAL RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #e0eafc, #cfdef3);
  background-attachment: fixed;
  color: #333;
  padding-top: 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* HEADER STRUCTURE WITH SCROLL */
.custom-header {
  position: fixed;         /* Makes it fixed at the top */
  top: 0;                  /* Stick to top of the page */
  left: 0;
  right: 0;
  z-index: 9999;           /* Stay above other content */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: white;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}


/* Logo */
.header-logo img {
  height: 60px;
}

/* Scrolling Text */
.scroll-banner {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  background: transparent;
  color: #000000;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-header 15s linear infinite;
}

@keyframes scroll-header {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Navigation */
nav.main-nav {
  display: flex;
  gap: 15px;
  
}

nav.main-nav a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
}

nav.main-nav a:hover {
  text-decoration: underline;
}

/* Dropdown as before */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: black;
  text-decoration: none;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* Container for floating logos */
.floating-logos {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Common style for all floating logos */
.floating-logo {
  position: absolute;
  width: 60px;
  opacity: 0.15;
  animation-name: floatLogo;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* Specific logo variations (different speeds and positions) */
.logo1 {
  left: 10%;
  animation-duration: 20s;
  animation-delay: 0s;
}

.logo2 {
  left: 30%;
  animation-duration: 30s;
  animation-delay: 3s;
}

.logo3 {
  left: 60%;
  animation-duration: 25s;
  animation-delay: 6s;
}

.logo4{
  left: 90%;
  animation-duration: 35s;
  animation-delay: 9s;
}

/* Keyframes for rotation and vertical float */
@keyframes floatLogo {
  0% {
    top: -100px;
    transform: rotate(0deg);
  }
  100% {
    top: 100%;
    transform: rotate(360deg);
  }
}
/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 500px; /* Adjust the height as needed */
  overflow: hidden;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 1; /* Keep original video color */
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  max-width: 90%;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.hero button {
  padding: 12px 30px;
  font-size: 1rem;
  background: white;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.hero button:hover {
  background: grey;
  color: white;
}


/* === SERVICES SECTION (Enhanced Style) === */
.services-enhanced {
  position: relative;
  background: linear-gradient(135deg, #eef2f7, #f9fbfd);
  padding: 80px 20px;
  overflow: hidden;
  z-index: 1;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-subtitle {
  font-size: 14px;
  color: #009688;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-title {
  font-size: 32px;
  font-weight: 700;
  color: #111464;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.services-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

.services-card h3 {
  font-size: 20px;
  color: #111464;
  margin-bottom: 12px;
}

.services-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Decorative background shape (optional) */
.services-enhanced::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 150, 136, 0.1), transparent);
  filter: blur(80px);
  z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .services-card {
    padding: 25px 20px;
  }
}

/* === SEO SECTION ENHANCED === */
.seo-section-enhanced {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #f9fafe, #eef3f8);
  overflow: hidden;
}

.seo-section-enhanced::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, hwb(174 54% 3% / 0.15), transparent 70%);
  filter: blur(90px);
  z-index: 0;
}

.seo-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* === Flex Layout for Intro === */
.seo-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.seo-illustration {
  flex: 1 1 45%;
  text-align: center;
}

.seo-illustration img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.seo-illustration img:hover {
  transform: scale(1.03);
}

.seo-content {
  flex: 1 1 50%;
}

/* === Headings === */
.seo-subtitle {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  color: hwb(174 54% 3%);
  margin-bottom: 10px;
}

.seo-heading {
  font-size: 34px;
  font-weight: 800;
  color: #111464;
  margin-bottom: 20px;
  position: relative;
}

.seo-heading::after {
  content: "";
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, hwb(174 54% 3%), #4aa3fd);
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.seo-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* === Services Grid === */
.seo-services-wrapper {
  text-align: center;
}

.seo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* === Card Styles === */
.seo-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 30px 25px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.seo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.seo-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, hwb(174 54% 3% / 0.05), transparent 70%);
  z-index: 0;
  transition: 0.3s ease;
}

.seo-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  z-index: 2;
  position: relative;
}

.seo-card h3 {
  font-size: 20px;
  color: #001357;
  margin-bottom: 12px;
  z-index: 2;
  position: relative;
}

.seo-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  z-index: 2;
  position: relative;
}

/* === Responsive === */
@media (max-width: 768px) {
  .seo-flex-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .seo-content {
    text-align: left;
  }

  .seo-card {
    padding: 25px 18px;
  }
}
.smm-services-section {
  padding: 80px 20px;
  background: #f9fafe;
}

.smm-container {
  max-width: 1200px;
  margin: auto;
}

.smm-intro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}

.smm-left, .smm-right {
  flex: 1 1 45%;
}

.smm-label {
  font-size: 13px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.smm-heading {
  font-size: 32px;
  color: #111464;
  margin-bottom: 20px;
  font-weight: 700;
}

.smm-subheading {
  color: #009688;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.smm-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(to right,#009688,#009688);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.smm-btn:hover {
  opacity: 0.9;
}

.smm-right p {
  color: #444;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 12px;
}

.smm-benefits {
  background: #f0f2fb;
  padding: 60px 30px;
  border-radius: 16px;
}

.text-center {
  text-align: center;
}

.smm-support-text {
  text-align: center;
  color: #555;
  font-size: 15px;
  margin-bottom: 40px;
}

.smm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.smm-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.smm-item:hover {
  transform: translateY(-5px);
}

.smm-item h4 {
  font-size: 18px;
  color: #111464;
  margin-bottom: 10px;
}

.smm-item h4 span {
  color: #009688;
  margin-right: 8px;
  font-weight: 700;
}

.smm-item p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .smm-intro-row {
    flex-direction: column;
  }
}

.influence-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f2fdfc, #e8f5f3);
}

.influence-container {
  max-width: 1200px;
  margin: 0 auto;
}

.influence-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.influence-content {
  flex: 1 1 50%;
}

.influence-image {
  flex: 1 1 45%;
  text-align: center;
}

.influence-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.influence-subtitle {
  font-size: 14px;
  color: #009688;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.influence-heading {
  font-size: 32px;
  color: #111464;
  font-weight: 700;
  margin-bottom: 20px;
}

.influence-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.influence-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.influence-points li {
  font-size: 15px;
  margin-bottom: 10px;
}

.influence-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #009688;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.influence-btn:hover {
  background-color: #00796b;
}

/* Responsive */
@media (max-width: 768px) {
  .influence-flex {
    flex-direction: column;
    text-align: center;
  }

  .influence-content, .influence-image {
    flex: 1 1 100%;
  }

  .influence-content {
    text-align: left;
  }
}


/* === YOUTUBE SECTION ENHANCED === */

.yt-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.yt-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.yt-content {
  flex: 1 1 50%;
}

.yt-subtitle {
  color: #009688;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.yt-heading {
  font-size: 32px;
  color: #001357;
  margin-bottom: 20px;
}

.center {
  text-align: center;
}

.yt-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.yt-points {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.yt-points li {
  margin-bottom: 12px;
  font-size: 15px;
}

.yt-btn {
  display: inline-block;
  background: #009688;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.yt-btn:hover {
  background: #00796b;
}

.yt-image {
  flex: 1 1 45%;
  text-align: center;
}

.yt-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Info Section */
.yt-info-section {
  background: #f5fafd;
}

.yt-info-box h4 {
  font-size: 22px;
  color: #009688;
  margin-bottom: 12px;
}

.yt-info-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

/* Steps */
.yt-steps-section {
  background: #fff;
}

.yt-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.yt-step {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.yt-step:hover {
  transform: translateY(-5px);
}

.yt-step h3 {
  color: #111464;
  margin-bottom: 10px;
}

.yt-step p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .yt-flex {
    flex-direction: column;
  }

  .yt-content {
    text-align: center;
  }

  .yt-btn {
    margin-top: 15px;
  }
}

.lead-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f2fdfc, #e8f5f3);
}

.lead-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lead-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.lead-content {
  flex: 1 1 50%;
}

.lead-image {
  flex: 1 1 45%;
  text-align: center;
}

.lead-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lead-subtitle {
  font-size: 14px;
  color: #009688;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.lead-heading {
  font-size: 32px;
  color: #111464;
  font-weight: 700;
  margin-bottom: 20px;
}

.lead-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

.lead-points {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.lead-points li {
  font-size: 15px;
  margin-bottom: 10px;
}

.lead-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #009688;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.lead-btn:hover {
  background-color: #00796b;
}

@media (max-width: 768px) {
  .lead-flex {
    flex-direction: column;
    text-align: center;
  }

  .lead-content,
  .lead-image {
    flex: 1 1 100%;
  }

  .lead-content {
    text-align: left;
  }
}


/* === SEM SECTION ENHANCED === */

.sem-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5fafd, #eef3f8);
}

.sem-container {
  max-width: 1200px;
  margin: auto;
}

.sem-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.sem-content {
  flex: 1 1 50%;
}

.sem-subtitle {
  color: #009688;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sem-heading {
  font-size: 32px;
  color: #001357;
  margin-bottom: 20px;
}

.sem-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sem-features {
  list-style: none;
  padding-left: 0;
  color: #333;
  margin-bottom: 30px;
}

.sem-features li {
  margin-bottom: 12px;
  padding-left: 10px;
  position: relative;
  font-size: 15px;
}

.sem-btn {
  background: #009688;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.sem-btn:hover {
  background: #00796b;
}

/* === IMAGE === */
.sem-image {
  flex: 1 1 45%;
  text-align: center;
}

.sem-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* === INFO BLOCKS === */
.sem-info-section {
  padding: 60px 20px;
  background: #fff;
}

.sem-info-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.sem-info-block h4 {
  color: #009688;
  font-size: 18px;
  margin-bottom: 10px;
}

.sem-info-block p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .sem-wrapper {
    flex-direction: column;
  }

  .sem-content {
    text-align: center;
  }

  .sem-btn {
    display: inline-block;
  }
}


/* === Responsive Fixes === */
@media (max-width: 768px) {
  .seo-flex-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .seo-content {
    text-align: left;
  }

  .seo-card {
    padding: 25px 16px;
  }
}




/* ==== SMO Enhanced Section ==== */
.smo-section-enhanced {
  position: relative;
  background: linear-gradient(135deg, #f8fafd, #eef3f8);
  padding: 80px 20px;
  overflow: hidden;
}

.smo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.smo-flex-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.smo-visual {
  flex: 1 1 45%;
  text-align: center;
}

.smo-visual img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.smo-content {
  flex: 1 1 50%;
}

.smo-subtitle {
  font-size: 14px;
  color: #009688;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: bold;
}

.smo-heading {
  font-size: 32px;
  background: linear-gradient(to right, #111464, #009688);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  line-height: 1.3;
}

.smo-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.smo-callout {
  font-weight: 600;
  color: #0d2f56;
  font-size: 16px;
  margin-top: 25px;
}

.smo-feature-list h4 {
  font-size: 18px;
  color: #111464;
  margin-bottom: 10px;
}

.smo-feature-list ul {
  list-style: none;
  padding-left: 0;
}

.smo-feature-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.smo-feature-list li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #009688;
}

/* Decorative background element */
.smo-decor {
  position: absolute;
  top: -50px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 150, 136, 0.2), transparent);
  z-index: 0;
}

/* Animation support (optional WOW.js or AOS) */
.wow {
  opacity: 0;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .smo-flex-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .smo-content {
    text-align: left;
  }
}


/* === ENHANCED ABOUT SECTION === */
.about-section-enhanced {
  position: relative;
  background: linear-gradient(to right, #f9fafe, #eef3f8);
  padding: 80px 20px;
  overflow: hidden;
  z-index: 1;
}

.about-section-enhanced::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 174, 255, 0.1), transparent);
  filter: blur(80px);
  z-index: 0;
}

.about-section-enhanced .container {
  position: relative;
  z-index: 2;
}

/* === ENHANCED OFFER SECTION === */
.offer-section-enhanced {
  background: linear-gradient(135deg, #eef2f7, #f9fbfd);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.offer-section-enhanced::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(180, 180, 255, 0.15), transparent);
  filter: blur(80px);
  z-index: 0;
}

.offer-section-enhanced .container {
  position: relative;
  z-index: 2;
}

/* Shared Section Layout */
.about-row,
.offer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-image,
.offer-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img,
.offer-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.about-text,
.offer-content {
  flex: 1 1 50%;
}

.about-text h4,
.offer-section-enhanced h4 {
  font-size: 14px;
  color: #009688;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.about-text h2,
.offer-section-enhanced h2 {
  font-size: 32px;
  color: #111464;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text .subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
}

.about-text p,
.offer-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn-about {
  padding: 10px 24px;
  background: transparent;
  border: 2px solid #009688;
  color: #009688;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-about:hover {
  background-color: #009688;
  color: #fff;
}

/* === Offer Box Redesign === */
.offer-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.offer-box:hover {
  transform: translateY(-5px);
}

.offer-box img {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.offer-box h3 {
  font-size: 18px;
  color: #111464;
  margin-bottom: 6px;
}

.offer-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-row,
  .offer-row {
    flex-direction: column;
    text-align: center;
  }

  .about-text,
  .offer-content {
    text-align: left;
  }

  .offer-box {
    flex-direction: column;
    text-align: center;
  }

  .offer-box img {
    margin: 0 0 10px 0;
  }
}
/* === BLOG SECTION ENHANCED === */

.jn-blog-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f9f9f9, #eef2f3);
}

.jn-blog-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.jn-blog-subtitle {
  text-transform: uppercase;
  color: #009688;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.jn-blog-heading {
  font-size: 32px;
  color: #111464;
  margin-bottom: 40px;
}

.jn-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.jn-post-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.jn-post-card:hover {
  transform: translateY(-5px);
}

.jn-post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.jn-post-content {
  padding: 20px;
  flex: 1;
  text-align: left;
}

.jn-post-content h3 {
  color: #111464;
  font-size: 20px;
  margin-bottom: 10px;
}

.jn-post-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

.jn-read-more {
  color: #009688;
  font-weight: bold;
  text-decoration: none;
  transition: margin-left 0.3s;
}

.jn-read-more i {
  margin-left: 5px;
}

.jn-read-more:hover i {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .jn-post-content {
    text-align: center;
  }
}

/* ===== BLOG SECTION ===== */
/* === BLOG SECTION ENHANCED === */
.blog-section-enhanced {
  background: linear-gradient(to right, #f9fafe, #eef3f8);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.blog-section-enhanced::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 174, 255, 0.1), transparent);
  filter: blur(80px);
  z-index: 0;
}

.blog-section-enhanced .container {
  position: relative;
  z-index: 2;
}

.blog-subtitle {
  font-size: 14px;
  color: #009688;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 32px;
  font-weight: 700;
  color: #111464;
  text-align: center;
  margin-bottom: 40px;
}

/* Blog Grid & Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  font-size: 20px;
  color: #111464;
  margin-bottom: 12px;
}

.blog-content h3 i {
  margin-right: 8px;
  color: #009688;
}

.blog-content p {
  color: #555;
  font-size: 15px;
  flex-grow: 1;
}

.read-more {
  margin-top: 16px;
  display: inline-block;
  color: #009688;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
}

.read-more i {
  margin-left: 6px;
  transition: margin-left 0.3s ease;
}

.read-more:hover i {
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-content h3 {
    font-size: 18px;
  }

  .blog-content p {
    font-size: 14px;
  }
}
/* === TESTIMONIAL SECTION ENHANCED === */
.testimonial-section-enhanced {
  background: linear-gradient(to right, #f9fafe, #eef3f8);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.testimonial-section-enhanced::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 174, 255, 0.1), transparent);
  filter: blur(80px);
  z-index: 0;
}

.testimonial-section-enhanced .container {
  position: relative;
  z-index: 2;
}

.testimonial-subtitle {
  font-size: 14px;
  color: #009688;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.testimonial-title {
  font-size: 32px;
  font-weight: 700;
  color: #111464;
  text-align: center;
  margin-bottom: 50px;
}

/* Cards */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 320px;
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
}

.testimonial-card strong {
  color: #111464;
}

.client-name {
  margin-top: 20px;
  font-weight: 700;
  font-size: 16px;
  color: #0d3a91;
}

.client-position {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    width: 100%;
    max-width: 480px;
  }
}
/* === BENEFITS SECTION ENHANCED === */
.dm-benefits-enhanced {
  padding: 80px 20px;
  background: linear-gradient(to right, #f9fafe, #eef3f8);
  position: relative;
  overflow: hidden;
}

.dm-benefits-enhanced::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 174, 255, 0.1), transparent);
  filter: blur(80px);
  z-index: 0;
}

.dm-benefits-enhanced .container {
  position: relative;
  z-index: 2;
}

.benefits-title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #111464;
  margin-bottom: 50px;
}

/* Grid Layout */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card Style */
.benefit-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: left;
}

.benefit-card:hover {
  transform: translateY(-6px);
}

.benefit-card h3 {
  font-size: 20px;
  color: #111464;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-title {
    font-size: 28px;
  }

  .benefit-card h3 {
    font-size: 18px;
  }

  .benefit-card p {
    font-size: 14px;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section-jnit {
  background: linear-gradient(to right, #f9f9f9, #eef2f3);
  padding: 80px 20px;
}

.about-container-jnit {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.about-image-jnit {
  flex: 1 1 45%;
  text-align: center;
}

.about-image-jnit img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-content-jnit {
  flex: 1 1 50%;
}

.about-subtitle-jnit {
  font-size: 14px;
  color: #009688;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-heading-jnit {
  font-size: 32px;
  color: #111464;
  margin-bottom: 20px;
}

.about-content-jnit p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .about-container-jnit {
    flex-direction: column;
    text-align: center;
  }

  .about-content-jnit {
    text-align: left;
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newsletter-box {
  border: 2px solid #ffffff;
  border-radius: 10px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  text-align: center;
  max-width: 400px;
  margin: 0 auto; /* center the box itself if not already */
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center; /* Center form elements including button */
  gap: 10px; /* spacing between elements */
}

.newsletter-form input,
.newsletter-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  resize: vertical;
}

.newsletter-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #0077b5;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #005fa3;
}


.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h5 {
  color: #444;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-info h2 {
  color: #111464;
  margin-bottom: 20px;
}

.contact-info p,
.contact-info a {
  color: #333;
  font-size: 16px;
  margin-bottom: 10px;
  text-decoration: none;
}

.contact-info a:hover {
  color: #0066cc;
}
.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.social-icons a {
  margin: 0 10px;
  font-size: 20px;
  color: #333;
  text-align: center;
}

.social-icons a:hover {
  color: #0077b5;
}


.contact-image {
  flex: 1;
  min-width: 300px;
 
}

.contact-image img {
  max-width: 100%;
  height: auto;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(270deg, #0a0a23, #1c1c3a, #0a0a23);
  background-size: 600% 600%;
  animation: gradientShift 10s ease infinite;
  color: white;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 30%;
  min-width: 280px;
}

.footer-section h4 {
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  line-height: 2.5;
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #aaa;
}



.footer-contact-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
  color: #ccc;
}

.footer-contact-bottom h4 {
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-contact-bottom a {
  color: #ccc;
  text-decoration: none;
}
ś
.footer-contact-bottom a:hover {
  color: white;
}

/* ===== ANIMATIONS ===== */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

 
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-row,
  .offer-row,
  .contact-section,
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .offer-box,
  .contact-info,
  .contact-image {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .dropdown-content {
    left: 0;
    right: auto;
  }
}
